From: emellor@ewan Date: Tue, 27 Sep 2005 21:08:07 +0000 (+0100) Subject: Fix final misuse of prettyprint parameters. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16769^2~16^2~27 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=92e31dac79b8ac43d633892b415591287fad4f8a;p=xen.git Fix final misuse of prettyprint parameters. --- diff --git a/tools/python/xen/xend/PrettyPrint.py b/tools/python/xen/xend/PrettyPrint.py index 198ee4a612..2819f02dcf 100644 --- a/tools/python/xen/xend/PrettyPrint.py +++ b/tools/python/xen/xend/PrettyPrint.py @@ -39,9 +39,9 @@ class PrettyItem: print '***PrettyItem>output>', self pass - def prettyprint(self, _, width): + def prettyprint(self, _): print '***PrettyItem>prettyprint>', self - return width + return self.width class PrettyString(PrettyItem):